fix(deps): update module github.com/gofiber/fiber/v2 to v3#203
Open
renovate[bot] wants to merge 1 commit into
Open
fix(deps): update module github.com/gofiber/fiber/v2 to v3#203renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
58c385e to
4d5775f
Compare
41d6f75 to
0d7cf7c
Compare
0d7cf7c to
8a74706
Compare
8a74706 to
e9db0be
Compare
00a21cc to
7750ab5
Compare
bc6dc10 to
2907b22
Compare
66b2179 to
7f2fe58
Compare
Contributor
Author
ℹ️ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
9d86e5f to
817213d
Compare
da4d899 to
d96d5db
Compare
fec06fe to
d96d5db
Compare
fec06fe to
92664d6
Compare
92664d6 to
d7d962b
Compare
d7d962b to
b473af9
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v2.52.14→v3.4.0Release Notes
gofiber/fiber (github.com/gofiber/fiber/v2)
v3.4.0Compare Source
🚀 New
Adds the HTTP QUERY method (RFC 10008):
fiber.MethodQuery,app.Query()routing, safe/idempotent handling in csrf, idempotency, earlydata and cache, plusclient.Query()shorthands.SaveWithContext,DestroyWithContext,RegenerateWithContextandResetWithContextpropagate deadlines/cancellation to the session storage backend; the plain methods keep working unchanged.Built-in and custom route constraints now share one
ConstraintHandlerinterface; the optionalConstraintAnalyzerprecomputes constraint data at route registration, removing per-request parsing. ExistingCustomConstraintimplementations keep working unchanged.New
ListenConfigknobs:PreforkRecoverIntervaldelays respawning a crashed child (default0) andPreforkShutdownGracePeriodsets how long the master waits after SIGTERM before SIGKILL (default5s).🧹 Updates
🐛 Fixes
🛠️ Maintenance
22 changes
📚 Documentation
📒 Documentation: https://docs.gofiber.io/next/
💬 Discord: https://gofiber.io/discord
Full Changelog: gofiber/fiber@v3.3.0...v3.4.0
Thank you @0xghost42, @Amirhf1, @DucMinhNe, @Fenny, @MD-Mushfiqur123, @ReneWerner87, @alexandear, @fereidani, @gaby, @james-yusuke, @ksw2000, @nekoworks-magic, @niksis02, @pageton, @sixcolors and @talktokim for making this release possible.
v3.3.0Compare Source
🚀 New
Swap the compiler used for
regex()route constraints. Assign a drop-in engine such ascoregex.MustCompilefor faster matching;Fiber reuses the compiled matcher across requests.New
hostauthorizationmiddleware that validates the incomingHostheader against an allowlist (exact host,.subdomainwildcard, CIDR range) to protect against DNS rebinding attacks.Prefork now delegates to fasthttp's
preforkpackage and addsPreforkRecoverThreshold(max child restarts before the master exits) andPreforkLoggertoListenConfig.https://docs.gofiber.io/api/fiber#preforkrecoverthreshold
Render request-scoped fields in
log.WithContext(c)by configuring a template withlog.SetContextTemplate, reusing themiddleware/loggerengine (including${value:key}for arbitrary context values).A prefork-safe, storage-backed key/value store via
app.SharedState()for data shared across workers/processes, with JSON/MsgPack/CBOR/XML helpers and automatic key namespacing.app.State()stays process-local.A Fiber-native
middleware/ssefor Server-Sent Events: SSE headers, event/comment/retry frames, per-write flushing, heartbeats,Last-Event-IDaccess, and disconnect detection viastream.Context().🧹 Updates
🐛 Fixes
🛠️ Maintenance
13 changes
📚 Documentation
📒 Documentation: https://docs.gofiber.io/next/
💬 Discord: https://gofiber.io/discord
Full Changelog: gofiber/fiber@v3.2.0...v3.3.0
Thank you @ReneWerner87, @elton-peixoto-lu, @gaby, @gtoxlili, @lyyvalhalla, @mutantkeyboard, @pageton and @pratikramteke for making this release possible.
v3.2.0Compare Source
🚀 New
https://docs.gofiber.io/api/app#getroute
https://docs.gofiber.io/middleware/healthcheck#config
https://docs.gofiber.io/middleware/paginate
https://docs.gofiber.io/api/bind#binderror
https://docs.gofiber.io/middleware/recover#config
🧹 Updates
🐛 Fixes
End()to prevent panic in streaming mode (#4128)🛠️ Maintenance
43 changes
📚 Documentation
📒 Documentation: https://docs.gofiber.io/next/
💬 Discord: https://gofiber.io/discord
Full Changelog: gofiber/fiber@v3.1.0...v3.2.0
Thank you @JonasDoe, @ReneWerner87, @adrian-lin-1-0-0, @aviu16, @gaby, @ha-sante, @loderunner, @meruiden, @mutantkeyboard and @sixcolors for making this release possible.
v3.1.0Compare Source
🚀 New
https://docs.gofiber.io/api/fiber/#passlocalstocontext
🧹 Updates
🐛 Fixes
🛠️ Maintenance
📚 Documentation
uristruct tag forctx.Bind().URI()in migration guide (#4092)📒 Documentation: https://docs.gofiber.io/next/
💬 Discord: https://gofiber.io/discord
Full Changelog: gofiber/fiber@v3.0.0...v3.1.0
Thank you @ReneWerner87, @SadikSunbul, @gaby and @sixcolors for making this release possible.
v3.0.0Compare Source
For a detailed view of all changes and the migration guide, visit:
https://docs.gofiber.io/whats_new
Try our new migration tool to help you upgrade from v2 to v3:
What's Changed
🚀 New Features
Rename WithTlsConfigmethod toWithTLSConfigin (#2570)https://*.example.comstyle subdomains in (#2925)c.SendFile()in (#3017)app.Test()for configurable testing in (#3161)NewErrorfin (#3463)Convert fiber.Ctxtype to interface in (#1928)End()method toCtxin (#3280)ShutdownWithContextFunc in (#3162)context.Contextin keyauth middleware in (#3287)Fiber.Contextimplementcontext.Contextin (#3382)Merge Listenmethods &ListenConfigin (#1930)BodyStream()logic toadaptor.FiberHandlermiddleware in (#3799)Keys()in session middleware in (#3517)net/httpand fasthttp handlers in (#3769)Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.